a906a9d1742bfea65ae6a09716916a48ae11ce7b,mobicomkitui/src/main/java/com/applozic/mobicomkit/uiwidgets/conversation/ConversationUIService.java,ConversationUIService,onActivityResult,#number#number#Intent#,171
Before Change
//TODO: check performance, we might need to put in each posting in separate thread.
for (Uri info : attachmentList) {
getConversationFragment().loadFile(info);
getConversationFragment().sendMessage(messageText, Message.ContentType.ATTACHMENT.getValue());
}
After Change
}
if (selectedFilePath != null) {
getConversationFragment().loadFile(selectedFilePath,file);
getConversationFragment().sendMessage("", Message.ContentType.VIDEO_MSG.getValue());
}
}